home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Library / +ORC / Orc pac 5 / FILEZ.ZIP / SKY.ZIP / REACH.ZIP / TIDY_UPD.BAT < prev    next >
DOS Batch File  |  1992-09-25  |  1KB  |  24 lines

  1. ECHO REMOVING REACH for the SKIES DEMO and INTRO FILES
  2. ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3. ECHO This is the list of files that will be deleted (it may be empty):
  4. for %%i in (tv_home.seq gamepal.sep demtrol.exe) do if EXIST %%i echo %%i 
  5. for %%i in (RFTSDEMO.exe copydemo.bat copydprt.bat loadbobg.sel) do if EXIST %%i echo %%i 
  6. if EXIST demo*.sel for %%i in (demo*.sel) do echo %%i
  7. PAUSE
  8. ECHO More files that will be deleted (the list may be empty):
  9. if EXIST *.sen for %%i in (*.sen) do echo %%i
  10. if EXIST *.sev for %%i in (*.sev) do echo %%i
  11. if EXIST tv_*.sec for %%i in (tv_*.sec) do echo %%i
  12. ECHO These are the files which are about to be deleted.
  13. ECHO If you are not willing to continue then press control and C together.
  14. PAUSE
  15. ECHO Please wait while deleting...
  16. for %%i in (tv_home.seq gamepal.sep demtrol.exe) do if EXIST %%i del %%i >NUL
  17. for %%i in (RFTSDEMO.exe copydemo.bat copydprt.bat loadbobg.sel) do if EXIST %%i del %%i>NUL
  18. if EXIST demo*.sel for %%i in (demo*.sel) do del %%i>NUL
  19. if EXIST *.sen for %%i in (*.sen) do del %%i>NUL
  20. if EXIST *.sev for %%i in (*.sev) do del %%i>NUL
  21. if EXIST tv_*.sec for %%i in (tv_*.sec) do del %%i>NUL
  22. ECHO Operation complete...
  23. :STOPNOW
  24.